Skip to content

OCPBUGS-86961: CI job kubevirt-metal-ovn-multinet fails to install MetalLB operator#80167

Open
amogh-redhat wants to merge 2 commits into
openshift:mainfrom
amogh-redhat:fix-bug-OCPBUGS-86961
Open

OCPBUGS-86961: CI job kubevirt-metal-ovn-multinet fails to install MetalLB operator#80167
amogh-redhat wants to merge 2 commits into
openshift:mainfrom
amogh-redhat:fix-bug-OCPBUGS-86961

Conversation

@amogh-redhat

@amogh-redhat amogh-redhat commented Jun 5, 2026

Copy link
Copy Markdown

What this PR does / why we need it :

The following jobs fails to install MetalLB operator:

https://prow.ci.openshift.org/view/gs/test-platform-results/logs/periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet/2060843873688621056

https://prow.ci.openshift.org/view/gs/test-platform-results/logs/periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet-default-net/2060934532646834176

The configurations for the jobs are stored in “ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.22__periodics-mce.yaml” .

METALLB_OPERATOR_SUB_SOURCE variable is missing for the below tests:

e2e-kubevirt-metal-ovn-multinet
e2e-kubevirt-metal-ovn-multinet-default-net

This is the reason why the job looks for METALLB_OPERATOR_SUB_SOURCE value in the workflow yaml - “ci-operator/step-registry/hypershift/mce/kubevirt/baremetalds/conformance/hypershift-mce-kubevirt-baremetalds-conformance-workflow.yaml”.
The METALLB_OPERATOR_SUB_SOURCE value is defined as “qe-app-registry” in the workflow yaml.
This is causing the error, as the OLM operator couldn’t find “metallb-operator” in “qe-app-registry”.
To fix this, i have adds the “METALLB_OPERATOR_SUB_SOURCE: metallb-konflux” for both the tests mentioned above under the “env:”.

Other tests that are running for the same version already have this variable under "env".
example - e2e-kubevirt-metal-ovn, e-agent-connected-ovn-ipv4-metal-conformance.

Which issue(s) this PR fixes: Fixes - https://redhat.atlassian.net/browse/OCPBUGS-86961

Special notes for your reviewer:

Checklist:
Subject and description added to both, commit and PR.
Relevant issues have been referenced.
This change includes docs.
This change includes unit tests.

Summary by CodeRabbit

This PR updates OpenShift CI configuration for HyperShift MCE periodic jobs (ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.22__periodics-mce.yaml) to fix MetalLB operator installation failures in the KubeVirt baremetal multinetwork conformance jobs (e2e-kubevirt-metal-ovn-multinet and e2e-kubevirt-metal-ovn-multinet-default-net).

What changed (practical impact):

  • The two jobs’ env blocks were expanded to enable Konflux-driven deployment of catalogs/operators and to point operator sources at the expected Konflux catalogs:
    • KONFLUX_DEPLOY_CATALOG_SOURCE: "true"
    • KONFLUX_DEPLOY_OPERATORS: "true"
    • KONFLUX_DEPLOY_SUBSCRIPTION: "false"
    • METALLB_OPERATOR_SUB_SOURCE: metallb-konflux (MetalLB now comes from the metallb-konflux source)
    • LOCAL_STORAGE_OPERATOR_SUB_SOURCE: local-storage-konflux (local-storage operator source added alongside MetalLB)

Scope/impact:

  • Affects HyperShift MCE periodic CI jobs for the 4.22 release on KubeVirt baremetal multinetwork conformance by ensuring the MetalLB (and local-storage) operators are installed via the intended Konflux operator sources, preventing the prior OLM/subscription failures that broke these runs.

@openshift-ci openshift-ci Bot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jun 5, 2026
@openshift-ci

openshift-ci Bot commented Jun 5, 2026

Copy link
Copy Markdown
Contributor

Skipping CI for Draft Pull Request.
If you want CI signal for your change, please convert it to an actual PR.
You can still manually trigger a test run with /test all

@openshift-ci-robot openshift-ci-robot added jira/severity-moderate Referenced Jira bug's severity is moderate for the branch this PR is targeting. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Jun 5, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@amogh-redhat: This pull request references Jira Issue OCPBUGS-86961, which is invalid:

  • expected the bug to target the "5.0.0" version, but no target version was set

Comment /jira refresh to re-evaluate validity if changes to the Jira bug are made, or edit the title of this pull request to link to a different bug.

The bug has been updated to refer to the pull request using the external bug tracker.

Details

In response to this:

What this PR does / why we need it :

The following jobs fails to install MetalLB operator:

https://prow.ci.openshift.org/view/gs/test-platform-results/logs/periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet/2060843873688621056

https://prow.ci.openshift.org/view/gs/test-platform-results/logs/periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet-default-net/2060934532646834176

The configurations for the jobs are stored in “ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.22__periodics-mce.yaml” .

METALLB_OPERATOR_SUB_SOURCE variable is missing for the below tests:

e2e-kubevirt-metal-ovn-multinet
e2e-kubevirt-metal-ovn-multinet-default-net

This is the reason why the job looks for METALLB_OPERATOR_SUB_SOURCE value in the workflow yaml - “ci-operator/step-registry/hypershift/mce/kubevirt/baremetalds/conformance/hypershift-mce-kubevirt-baremetalds-conformance-workflow.yaml”.
The METALLB_OPERATOR_SUB_SOURCE value is defined as “qe-app-registry” in the workflow yaml.
This is causing the error, as the OLM operator couldn’t find “metallb-operator” in “qe-app-registry”.
To fix this, i have adds the “METALLB_OPERATOR_SUB_SOURCE: metallb-konflux” for both the tests mentioned above under the “env:”.

Other tests that are running for the same version already have this variable under "env".
example - e2e-kubevirt-metal-ovn, e-agent-connected-ovn-ipv4-metal-conformance.

Which issue(s) this PR fixes: Fixes - https://redhat.atlassian.net/browse/OCPBUGS-86961

Special notes for your reviewer:
Checklist:
Subject and description added to both, commit and PR.
Relevant issues have been referenced.
This change includes docs.
This change includes unit tests.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@coderabbitai

coderabbitai Bot commented Jun 5, 2026

Copy link
Copy Markdown
Contributor

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Central YAML (inherited)

Review profile: CHILL

Plan: Enterprise

Run ID: da0b5fd6-1ff5-4360-b47b-edfdf4d4bca7

📥 Commits

Reviewing files that changed from the base of the PR and between a0462ac and 61b9a3d.

📒 Files selected for processing (1)
  • ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.22__periodics-mce.yaml
🚧 Files skipped from review as they are similar to previous changes (1)
  • ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.22__periodics-mce.yaml

Walkthrough

This PR adds matching Konflux deployment flags and operator source settings to two Hypershift MCE periodic Prow job environment blocks.

Changes

MCE Konflux environment configuration

Layer / File(s) Summary
Configure Konflux deployment and operator sources
ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.22__periodics-mce.yaml
Updates e2e-kubevirt-metal-ovn-multinet and e2e-kubevirt-metal-ovn-multinet-default-net with Konflux deployment toggles plus LOCAL_STORAGE_OPERATOR_SUB_SOURCE: local-storage-konflux and METALLB_OPERATOR_SUB_SOURCE: metallb-konflux.

Estimated code review effort: 2 (Simple) | ~10 minutes

Suggested labels: rehearsals-ack

🚥 Pre-merge checks | ✅ 15
✅ Passed checks (15 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title matches the main change: fixing MetalLB operator installation failures in the kubevirt-metal-ovn-multinet CI jobs.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Stable And Deterministic Test Names ✅ Passed PR changes only a YAML job config file; no Ginkgo test titles or test code were added or modified.
Test Structure And Quality ✅ Passed Only a CI YAML file changed; no Ginkgo test code was added or modified, so the test-structure check is not applicable.
Microshift Test Compatibility ✅ Passed PR only changes CI job env in a YAML config; no new Ginkgo tests or test bodies were added, so the MicroShift check is not applicable.
Single Node Openshift (Sno) Test Compatibility ✅ Passed PR only edits ci-operator YAML env vars; no new Ginkgo/Describe/It tests or multi-node assumptions were added.
Topology-Aware Scheduling Compatibility ✅ Passed Only CI job env vars changed; no manifests, controllers, or topology-sensitive scheduling constraints were introduced.
Ote Binary Stdout Contract ✅ Passed Only YAML config changed; no process-level code or stdout writes were added, so the OTE stdout contract is unaffected.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed Only ci-operator YAML env vars changed; no new Ginkgo tests or network-handling code was added, so IPv4/disconnected compatibility check is not applicable.
No-Weak-Crypto ✅ Passed Only a CI YAML env update; no MD5/SHA1/DES/RC4/3DES/Blowfish/ECB, custom crypto, or secret comparisons appear in the diff.
Container-Privileges ✅ Passed The PR only changes job env vars; no privileged/container security fields appear in the modified YAML or related workflow.
No-Sensitive-Data-In-Logs ✅ Passed Changed YAML only adds non-sensitive Konflux/operator env vars; no passwords, tokens, PII, hostnames, or customer data found.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@amogh-redhat

Copy link
Copy Markdown
Author

/hold

@openshift-ci openshift-ci Bot added the do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. label Jun 8, 2026
@amogh-redhat
amogh-redhat marked this pull request as ready for review June 8, 2026 05:07
@openshift-ci openshift-ci Bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Jun 8, 2026
@openshift-ci
openshift-ci Bot requested review from enxebre and muraee June 8, 2026 05:08
@amogh-redhat

Copy link
Copy Markdown
Author

/pj-rehearse periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amogh-redhat: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@amogh-redhat
amogh-redhat force-pushed the fix-bug-OCPBUGS-86961 branch from 4075b2f to ca01e6f Compare June 8, 2026 05:25
@mgencur

mgencur commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

/lgtm

The workflow already has the required:

KONFLUX_DEPLOY_OPERATORS: "false"
KONFLUX_TARGET_OPERATORS: metallb,local-storage

So, adding this variable should suffice.

@openshift-ci openshift-ci Bot added the lgtm Indicates that a PR is ready to be merged. label Jun 8, 2026
@mgencur

mgencur commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

/pj-rehearse periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@mgencur: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@openshift-ci

openshift-ci Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: amogh-redhat, mgencur
Once this PR has been reviewed and has the lgtm label, please assign sjenning for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@mgencur

mgencur commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

Actually, the tests require all of these:

KONFLUX_DEPLOY_CATALOG_SOURCE: "true"
KONFLUX_DEPLOY_OPERATORS: "true"
KONFLUX_DEPLOY_SUBSCRIPTION: "false"

In the latest run, the CatalogSource was not deployed

@amogh-redhat
amogh-redhat force-pushed the fix-bug-OCPBUGS-86961 branch from ca01e6f to a0462ac Compare June 8, 2026 11:08
@openshift-ci openshift-ci Bot removed the lgtm Indicates that a PR is ready to be merged. label Jun 8, 2026
@openshift-ci

openshift-ci Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

New changes are detected. LGTM label has been removed.

@amogh-redhat

Copy link
Copy Markdown
Author

Thank you @mgencur . I have added the variables.

@amogh-redhat

Copy link
Copy Markdown
Author

/pj-rehearse periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amogh-redhat: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@amogh-redhat

Copy link
Copy Markdown
Author

The error - "Nested cluster's node count is not equal to the desired replicas in the NodePool. Retrying in 30 seconds." doesn't look to be an issue with the changes I made. It looks more of an issue with an infrastructure/resource issue. I will initiate the test again.

@amogh-redhat

Copy link
Copy Markdown
Author

/retest

@amogh-redhat

Copy link
Copy Markdown
Author

/pj-rehearse periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amogh-redhat: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@mgencur

mgencur commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

You're on a good way. The metallb install step already passed in the latest run.

@amogh-redhat

Copy link
Copy Markdown
Author

/pj-rehearse periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amogh-redhat: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@amogh-redhat

Copy link
Copy Markdown
Author

/pj-rehearse periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amogh-redhat: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@amogh-redhat

Copy link
Copy Markdown
Author

/retest

@amogh-redhat

Copy link
Copy Markdown
Author

/pj-rehearse periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amogh-redhat: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@openshift-ci-robot openshift-ci-robot added jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. and removed jira/invalid-bug Indicates that a referenced Jira bug is invalid for the branch this PR is targeting. labels Jul 10, 2026
@openshift-ci-robot

Copy link
Copy Markdown
Contributor

@amogh-redhat: This pull request references Jira Issue OCPBUGS-86961, which is valid. The bug has been moved to the POST state.

3 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target version (5.0.0) matches configured target version for branch (5.0.0)
  • bug is in the state ASSIGNED, which is one of the valid states (NEW, ASSIGNED, POST)
Details

In response to this:

What this PR does / why we need it :

The following jobs fails to install MetalLB operator:

https://prow.ci.openshift.org/view/gs/test-platform-results/logs/periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet/2060843873688621056

https://prow.ci.openshift.org/view/gs/test-platform-results/logs/periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet-default-net/2060934532646834176

The configurations for the jobs are stored in “ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.22__periodics-mce.yaml” .

METALLB_OPERATOR_SUB_SOURCE variable is missing for the below tests:

e2e-kubevirt-metal-ovn-multinet
e2e-kubevirt-metal-ovn-multinet-default-net

This is the reason why the job looks for METALLB_OPERATOR_SUB_SOURCE value in the workflow yaml - “ci-operator/step-registry/hypershift/mce/kubevirt/baremetalds/conformance/hypershift-mce-kubevirt-baremetalds-conformance-workflow.yaml”.
The METALLB_OPERATOR_SUB_SOURCE value is defined as “qe-app-registry” in the workflow yaml.
This is causing the error, as the OLM operator couldn’t find “metallb-operator” in “qe-app-registry”.
To fix this, i have adds the “METALLB_OPERATOR_SUB_SOURCE: metallb-konflux” for both the tests mentioned above under the “env:”.

Other tests that are running for the same version already have this variable under "env".
example - e2e-kubevirt-metal-ovn, e-agent-connected-ovn-ipv4-metal-conformance.

Which issue(s) this PR fixes: Fixes - https://redhat.atlassian.net/browse/OCPBUGS-86961

Special notes for your reviewer:
Checklist:
Subject and description added to both, commit and PR.
Relevant issues have been referenced.
This change includes docs.
This change includes unit tests.

Summary by CodeRabbit

This PR updates OpenShift CI configuration for HyperShift MCE periodic jobs (ci-operator/config/openshift/hypershift/openshift-hypershift-release-4.22__periodics-mce.yaml) to fix MetalLB operator installation failures in the KubeVirt baremetal multinetwork conformance jobs (e2e-kubevirt-metal-ovn-multinet and e2e-kubevirt-metal-ovn-multinet-default-net).

What changed (practical impact):

  • The two jobs’ env blocks were expanded to enable Konflux-driven deployment of catalogs/operators and to point operator sources at the expected Konflux catalogs:
  • KONFLUX_DEPLOY_CATALOG_SOURCE: "true"
  • KONFLUX_DEPLOY_OPERATORS: "true"
  • KONFLUX_DEPLOY_SUBSCRIPTION: "false"
  • METALLB_OPERATOR_SUB_SOURCE: metallb-konflux (MetalLB now comes from the metallb-konflux source)
  • LOCAL_STORAGE_OPERATOR_SUB_SOURCE: local-storage-konflux (local-storage operator source added alongside MetalLB)

Scope/impact:

  • Affects HyperShift MCE periodic CI jobs for the 4.22 release on KubeVirt baremetal multinetwork conformance by ensuring the MetalLB (and local-storage) operators are installed via the intended Konflux operator sources, preventing the prior OLM/subscription failures that broke these runs.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

[REHEARSALNOTIFIER]
@amogh-redhat: the pj-rehearse plugin accommodates running rehearsal tests for the changes in this PR. Expand 'Interacting with pj-rehearse' for usage details. The following rehearsable tests have been affected by this change:

Test name Repo Type Reason
periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet N/A periodic Ci-operator config changed
periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet-default-net N/A periodic Ci-operator config changed
Interacting with pj-rehearse

Comment: /pj-rehearse to run up to 5 rehearsals
Comment: /pj-rehearse skip to opt-out of rehearsals
Comment: /pj-rehearse {test-name}, with each test separated by a space, to run one or more specific rehearsals
Comment: /pj-rehearse more to run up to 10 rehearsals
Comment: /pj-rehearse max to run up to 25 rehearsals
Comment: /pj-rehearse auto-ack to run up to 5 rehearsals, and add the rehearsals-ack label on success
Comment: /pj-rehearse list to get an up-to-date list of affected jobs
Comment: /pj-rehearse abort to abort all active rehearsals
Comment: /pj-rehearse network-access-allowed to allow rehearsals of tests that have the restrict_network_access field set to false. This must be executed by an openshift org member who is not the PR author

Once you are satisfied with the results of the rehearsals, comment: /pj-rehearse ack to unblock merge. When the rehearsals-ack label is present on your PR, merge will no longer be blocked by rehearsals.
If you would like the rehearsals-ack label removed, comment: /pj-rehearse reject to re-block merging.

@amogh-redhat

Copy link
Copy Markdown
Author

/pj-rehearse periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amogh-redhat: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@amogh-redhat

Copy link
Copy Markdown
Author

/pj-rehearse periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet

@openshift-merge-bot

Copy link
Copy Markdown
Contributor

@amogh-redhat: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel.

@openshift-ci

openshift-ci Bot commented Jul 13, 2026

Copy link
Copy Markdown
Contributor

@amogh-redhat: The following test failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/rehearse/periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet 61b9a3d link unknown /pj-rehearse periodic-ci-openshift-hypershift-release-4.22-periodics-mce-e2e-kubevirt-metal-ovn-multinet

Full PR test history. Your PR dashboard.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

do-not-merge/hold Indicates that a PR should not merge because someone has issued a /hold command. jira/severity-moderate Referenced Jira bug's severity is moderate for the branch this PR is targeting. jira/valid-bug Indicates that a referenced Jira bug is valid for the branch this PR is targeting. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants